5255e378ee9402a5de96b662ab250d6779ff5e8a,jsonb/src/main/java/org/eclipse/persistence/json/bind/internal/Marshaller.java,Marshaller,Marshaller,#JsonbContext#Writer#,130

Before Change


     * @param writer writer to marshall into
     */
    public Marshaller(JsonbContext jsonbContext, Writer writer) {
        this(jsonbContext, jsonbContext.getJsonProvider().createGenerator(writer));
    }

    /**

After Change


     * @param writer writer to marshall into
     */
    public Marshaller(JsonbContext jsonbContext, Writer writer) {
        this(jsonbContext, new IJsonJsonGeneratorDecorator(jsonbContext.getJsonProvider().createGenerator(writer)));
    }

    /**